home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / includes / pmplugin.h < prev    next >
C/C++ Source or Header  |  1996-11-18  |  1KB  |  44 lines

  1. /*
  2.  *--- PageMaker.h ----------------------------------------------
  3.  * Copyright (c) 1995 Adobe Systems, Inc.  All rights reserved.
  4.  *
  5.  * This contains the common .h files for a PageMaker plug-in.
  6.  *
  7.  * $Revision:   1.2  $
  8.  *
  9.  *
  10.  *
  11.  *--------------------------------------------------------------
  12.  */
  13. #ifndef __PageMaker__
  14. #define __PageMaker__
  15.  
  16. #include "PMTypes.h"
  17. #include "PMCommands.h"
  18. #include "PMQueries.h"
  19. #include "PMUtils.h"
  20. #include "PMMemory.h"
  21. #include "PMKeywords.h"
  22.  
  23. #ifndef __cplusplus
  24.        // #include "PMUtils.h"    // this replaces the obsolete PageMakerPBMacros.h
  25.     
  26. #else
  27.     // Try the new PageMaker Class Library!
  28. #endif
  29.  
  30. // Most plug-ins will need these error codes
  31. #include "PMCQErrs.h"
  32.  
  33. // You probably won't need these error codes
  34. #if 0
  35.     #include "PageMakerDialogErrs.h"
  36.     #include "PageMakerFileErrs.h"
  37.     #include "PageMakerImpExpErrs.h"
  38.     #include "PageMakerPrinterErrs.h"
  39.     #include "PageMakerTextErrs.h"
  40.     #include "PageMakerMiscErrs.h"
  41. #endif
  42.  
  43. #endif  // __PageMaker__
  44.